home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / ifxlite / imagefx3 / rexx / autofx / eot_dream.ifx.pre < prev    next >
Text File  |  2004-08-03  |  865b  |  41 lines

  1. /*
  2.  * Perspective.ifx.pre
  3.  * Written by Thomas Krehbiel
  4.  *
  5.  * Perspective Rotation.
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Sequence number (?)
  9.  *    Word(Arg(1),2) = Total number of frames (N)
  10.  *
  11.  * Returns:
  12.  *    0 if successful, non-zero on failure
  13.  *
  14.  */
  15.  
  16. OPTIONS RESULTS
  17.  
  18. base  = 'Autofx_Dream_'
  19.  
  20. orient = GETCLIP(base||'Orient')
  21. amt    = GETCLIP(base||'Amount')
  22. waves  = GETCLIP(base||'Waves')
  23.  
  24. IF orient = "" THEN orient = 0
  25. IF amt = "" THEN amt = 50
  26. IF waves = "" THEN waves = 5
  27.  
  28. Gadget.1 = 'CYCLE   150  5 150 14 "Orient:"' orient '"Horiz/Vert"'
  29. Gadget.2 = 'INTEGER 150 20 50 14 "Amount:"' amt
  30. Gadget.3 = 'INTEGER 150 35 50 14 "Waves:"' waves
  31. Gadget.4 = 'END'
  32.  
  33. NewComplexRequest '"Dream Sequence"' Gadget 330 60
  34. IF rc ~= 0 THEN EXIT rc
  35.  
  36. CALL SETCLIP(base||'Orient', result.1)
  37. CALL SETCLIP(base||'Amount', result.2)
  38. CALL SETCLIP(base||'Waves', result.3)
  39.  
  40. EXIT
  41.